home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2009 February / PCWFEB09.iso / Software / Shareware / Beyond Compare 3.0.10 / BCompareSetup.exe / {app} / BCompare.exe / 0 / RCDATA / TTEXTWEIGHTITEMDIALOG / TTEXTWEIGHTITEMDIALOG.txt
Text File  |  2008-11-03  |  2KB  |  84 lines

  1. inherited TextWeightItemDialog: TTextWeightItemDialog
  2.   Caption = 'Line Weight'
  3.   ClientHeight = 151
  4.   ClientWidth = 329
  5.   OnCreate = FormCreate
  6.   OnShow = FormShow
  7.   PixelsPerInch = 96
  8.   TextHeight = 13
  9.   object FindTextLbl: TUiLabel
  10.     Left = 8
  11.     Top = 8
  12.     Height = 13
  13.     Caption = '&Text matching:'
  14.     FocusControl = FindTextEdit
  15.   end
  16.   object PriorityLbl: TUiLabel
  17.     Left = 256
  18.     Top = 8
  19.     Height = 13
  20.     Caption = 'Priority:'
  21.     FocusControl = PriorityEdit
  22.   end
  23.   object FindTextEdit: TUiEdit
  24.     Left = 8
  25.     Top = 24
  26.     Width = 241
  27.     Height = 21
  28.     TabOrder = 0
  29.     OnChange = SomethingChangedClick
  30.   end
  31.   object PriorityEdit: TUiComboBox
  32.     Left = 256
  33.     Top = 24
  34.     Width = 65
  35.     Height = 21
  36.     Style = csDropDownList
  37.     ItemHeight = 13
  38.     TabOrder = 1
  39.     OnChange = SomethingChangedClick
  40.   end
  41.   object CaseSensitiveEdit: TUiCheckBox
  42.     Left = 8
  43.     Top = 56
  44.     Height = 17
  45.     Caption = 'Match character &case'
  46.     TabOrder = 2
  47.     OnClick = SomethingChangedClick
  48.   end
  49.   object WholeWordsEdit: TUiCheckBox
  50.     Left = 8
  51.     Top = 76
  52.     Height = 17
  53.     Caption = '&Whole words only'
  54.     TabOrder = 3
  55.     OnClick = SomethingChangedClick
  56.   end
  57.   object IsRegExpEdit: TUiCheckBox
  58.     Left = 8
  59.     Top = 96
  60.     Height = 17
  61.     Caption = 'Regular e&xpression'
  62.     TabOrder = 4
  63.     OnClick = SomethingChangedClick
  64.   end
  65.   object OkBtn: TUiButton
  66.     Left = 168
  67.     Top = 120
  68.     Caption = 'OK'
  69.     Default = True
  70.     ModalResult = 1
  71.     TabOrder = 5
  72.     AutoSize = asRight
  73.   end
  74.   object CancelBtn: TUiButton
  75.     Left = 248
  76.     Top = 120
  77.     Cancel = True
  78.     Caption = 'Cancel'
  79.     ModalResult = 2
  80.     TabOrder = 6
  81.     AutoSize = asRight
  82.   end
  83. end
  84.